const go/printer.commaTerm

5 uses

	go/printer (current package)
		nodes.go#L97: 	commaTerm exprListMode = 1 << iota // list is optionally terminated by a comma
		nodes.go#L294: 	if mode&commaTerm != 0 && next.IsValid() && p.pos.Line < next.Line {
		nodes.go#L924: 		p.exprList(x.Lbrack, x.Indices, depth+1, commaTerm, x.Rbrack, false)
		nodes.go#L1003: 			p.exprList(x.Lparen, x.Args, depth, commaTerm, x.Rparen, false)
		nodes.go#L1019: 		p.exprList(x.Lbrace, x.Elts, 1, commaTerm, x.Rbrace, x.Incomplete)